home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'Kris Zaklika',
- 'Copyright': 'Copyright (C) 2002-2003, Jasc Software Inc., All Rights Reserved.',
- 'Description': 'An fresh and tasty orange',
- 'Host': 'Paint Shop Pro',
- 'Host Version': '8.00'
- }
-
- def Preset_BallsAndBubbles():
- return {
- 'Illumination': {
- 'MaxAmbience': 50,
- 'MinAmbience': 0,
- 'LightList': [{
- 'BubbleLight': App.Constants.Boolean.false,
- 'Color': (255,255,255),
- 'Direction': (1,1,-1),
- 'HighlightSize': 15
- },{
- 'BubbleLight': App.Constants.Boolean.false,
- 'Color': (77,53,15),
- 'Direction': (-0.713603,-0.53733,0.449497),
- 'HighlightSize': 22
- },{
- 'BubbleLight': App.Constants.Boolean.false,
- 'Color': (59,42,15),
- 'Direction': (-0.760008,-0.573204,-0.306307),
- 'HighlightSize': 17
- }]
- },
- 'Mode': App.Constants.CountType.Single,
- 'Multiple': {
-
- },
- 'Single': {
- 'MaxPossibleSize': App.Constants.Boolean.true
- },
- 'Surface': {
- 'Material': {
- 'Color': (255,162,15),
- 'Pattern': None,
- 'Gradient': None,
- 'Texture': None
- },
- 'BumpMap': {
- 'Active': App.Constants.Boolean.true,
- 'Depth': -13,
- 'FileName': 'Noise',
- 'Fit': App.Constants.Boolean.false,
- 'Size': 25,
- 'Smoothness': 0
- },
- 'EnvironmentMap': {
- 'Active': App.Constants.Boolean.false
- },
- 'Gloss': 33,
- 'Opacity': 100,
- 'Shininess': 50
- }
- }
-
- def Do(Environment):
- App.Do( Environment, 'BallsAndBubbles', Preset_BallsAndBubbles())
-
-